var bytes.asciiSpace
7 uses
bytes (current package)
bytes.go#L416: var asciiSpace = [256]uint8{'\t': 1, '\n': 1, '\v': 1, '\f': 1, '\r': 1, ' ': 1}
bytes.go#L432: isSpace := int(asciiSpace[r])
bytes.go#L448: for i < len(s) && asciiSpace[s[i]] != 0 {
bytes.go#L453: if asciiSpace[s[i]] == 0 {
bytes.go#L461: for i < len(s) && asciiSpace[s[i]] != 0 {
bytes.go#L1082: if asciiSpace[c] == 0 {
bytes.go#L1094: if asciiSpace[c] == 0 {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |